/*
repeat = 10800
\htmlŎIɃ[ĥ
XNvǧJԂ͍T߂


*/





function getRvalue(color){ return color & 0x0000FF; }
function getGvalue(color){ return (color & 0x00FF00)>>8 ; }
function getBvalue(color){ return (color & 0xFF0000)>>16 ; }
function getAvalue(color){ return (color & 0xFF000000)>>24 ; }
function RGB(r,g,b){ return (r | (g<<8) | (b<<16) ) ; }

Memo.SetColor(0,RGB(50,50,50));
Memo.SetColor(1,RGB(30,30,30));
Memo.SetColor(2,RGB(190,190,190));
Memo.SetColor(3,RGB(190,190,190));
Memo.SetColor(4,RGB(30,30,30));




Memo.title='FFFFOUND! viewer';
Memo.text='FFFFOUND!';

Memo.ShowAsHtmlOnIE('ffffound.html');


